步骤
- 1.获得第三方字体(一般由UI提供)
- 2.添加第三方字体到项目
- 3.在
info.plist
文件中添加Fonts provided by application
字段并添加支持的第三方字体 - 4.获取第三方字体的
FontName
添加第三方字体到项目
在info.plist
文件中添加Fonts provided by application
字段并添加支持的第三方字体
也可以代码的形式添加1
2
3
4
5
6
7<key>UIAppFonts</key>
<array>
<string>CHANTAL.TTF</string>
<string>filsonsoft-book.otf</string>
<string>filsonsoft-light.otf</string>
<string>sf-pro-text_regular.ttf</string>
</array>
控制台打印字体
可以看见系统已经支持CHANTAL-Normal
字体了
使用第三方字体
1 | self.label1.font = [UIFont fontWithName:@"CHANTAL-Normal" size:16]; |
显示效果